home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlib43 / mntlib / mkfifo.c < prev    next >
C/C++ Source or Header  |  1993-10-11  |  207b  |  16 lines

  1. /* fake mkfifo -- this always fails */
  2.  
  3. #include <errno.h>
  4. #include <support.h>
  5. #include <types.h>
  6. #include <stat.h>
  7.  
  8. int
  9. mkfifo(path, mode)
  10.     const char *path;
  11.     mode_t mode;
  12. {
  13.     errno = EINVAL;
  14.     return -1;
  15. }
  16.